fix(cve): CVE-2026-33811, CVE-2026-39833 - update Go stdlib and x/crypto [release-v0.42.2]#2924
Open
divyansh42 wants to merge 1 commit into
Conversation
Contributor
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
Member
Author
|
/release-note-none |
- Update Go stdlib from 1.25.9 to 1.25.11 Addresses CVE-2026-33811 (DoS via long CNAME response in net.LookupCNAME) - Update golang.org/x/crypto from v0.47.0 to v0.52.0 Addresses CVE-2026-39833 (security bypass in ssh/agent key confirmation) - Also upgrades transitive deps: x/net, x/sync, x/sys, x/term, x/text Resolves: SRVKP-12559, SRVKP-12569 Co-Assisted-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Divyanshu Agrawal <diagrawa@redhat.com>
b9087d4 to
521b598
Compare
Member
Author
|
/retest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
CVE Details
Fix Summary
go.mod:go 1.25.9→go 1.25.11golang.org/x/crypto:v0.47.0→v0.52.0(minimum safe patch per advisory)go mod tidy && go mod verify && go mod vendor— all passed ✅x/net v0.49.0→v0.54.0,x/sync v0.19.0→v0.20.0,x/sys v0.40.0→v0.45.0,x/term v0.39.0→v0.43.0,x/text v0.33.0→v0.37.0Test Results
✅ Tests PASSED —
go test -mod=vendor ./...All packages passed. Full suite including
pkg/cmd/pipelinerunandpkg/cmd/taskrun.Breaking Changes
None expected. This is a pure dependency version bump. The x/crypto update stays within the same major version (
v0). stdlib bump is patch-level only.Risk Assessment
Low — Patch-level updates only. All unit tests pass. No API surface changes in updated packages relevant to tkn CLI usage.
Jira References
SRVKP-12559, SRVKP-12569
Verification Steps
go test -mod=vendor ./...passesgo mod verifyshows all modules verified🤖 Generated with Claude Code